100 |
How can I remove an event
|
99 |
How can I count the events
|
98 |
How can I clear all events
|
97 |
How can I save the events in the calendar
OleObject oCalendar oCalendar = ole_1.Object |
96 |
How can I assign an icon to a date
OleObject oCalendar oCalendar = ole_1.Object oCalendar.AutoSize = false oCalendar.FixedCellWidth = 36 oCalendar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oCalendar.Events.Add(oCalendar.Date).Image = 1 |
95 |
How can I enable or disable a date
|
94 |
How can I mark or highlight a date
|
93 |
How can I assign a tooltip or a comment to a date
OleObject oCalendar,var_Event oCalendar = ole_1.Object var_Event = oCalendar.Events.Add(oCalendar.Date) var_Event.Comment = "This is a text that shows up when the cursor hovers the date" var_Event.CommentTitle = "T I T L E" oCalendar.HideSelection = true |
92 |
How can I assign any extra data to a date
|
91 |
How can I change the background color for a date
OleObject oCalendar oCalendar = ole_1.Object oCalendar.Events.Add(oCalendar.Date).BackColor = RGB(255,0,0) |
90 |
How can I change the foreground color for a date
OleObject oCalendar oCalendar = ole_1.Object oCalendar.Events.Add(oCalendar.Date).ForeColor = RGB(255,0,0) |
89 |
How can I draw a date as strikeout
|
88 |
How can I underline a date
|
87 |
How can I make italic a date
|
86 |
How can I bold a date
|
85 |
How can I get the last visible date being displayed in the calendar
|
84 |
How can I get the first visible date being displayed in the calendar
|
83 |
How can I hide the ticker that's shown for dates that have a tooltip or a comment
|
82 |
How can I change the visual aspect of the dates that have a comment or a tooltip assigned
|
81 |
How can I change the visual aspect of the dates that have a comment or a tooltip assigned
|
80 |
How can I change the color to highlight the dates that have a comment or a tooltip assigned
OleObject oCalendar oCalendar = ole_1.Object oCalendar.CommentBackColor = RGB(0,0,0) oCalendar.Events.Add(oCalendar.Date).Comment = "This is a text that shows up when the cursor hovers the date" oCalendar.HideSelection = true |
79 |
How can I hide the days that are shown in gray, and doesn' belong to the month
|
78 |
How can I change the color for non working days
OleObject oCalendar oCalendar = ole_1.Object oCalendar.NonworkingDays = 6 oCalendar.NonworkingDaysPattern = 10 oCalendar.NonworkingDaysColor = RGB(255,0,0) |
77 |
How can I change the pattern or the style to draw the non working days
|
76 |
How can I show or hide the non working days
|
75 |
How can I specify the non working days
|
74 |
How do I get the height of the control to fit the MaxMonthY months in the client area
OleObject oCalendar oCalendar = ole_1.Object |
73 |
How do I get the width of the control to fit the MaxMonthX months in the client area
OleObject oCalendar oCalendar = ole_1.Object |
72 |
How can I specify the min and max years to scroll within
OleObject oCalendar oCalendar = ole_1.Object oCalendar.MinScrollYear = 2001 oCalendar.MaxScrollYear = 2010 |
71 |
How do I let the tooltip being displayed longer
|
70 |
How can I save the selected dates
OleObject oCalendar oCalendar = ole_1.Object |
69 |
How can I change the date that gets the focus
|
68 |
How can I select a new date
|
67 |
I've seen that the width of the tooltip is variable. Can I make it larger
|
66 |
How do I disable showing the tooltip for all control
|
65 |
How do I show the tooltip quicker
|
64 |
How do I call your x-script language
|
63 |
How do I call your x-script language
|
62 |
Can I change the font for the tooltip
|
61 |
How can I change the caption of the Today's button
|
60 |
How do I get the date from the cursor
OleObject oCalendar oCalendar = ole_1.Object |
59 |
How do I unselect a date
OleObject oCalendar oCalendar = ole_1.Object oCalendar.SingleSel = false oCalendar.Date = 2001-01-01 oCalendar.SelDate = 2001-01-02 oCalendar.SelDate = 2001-01-03 oCalendar.SelDate = 2001-01-04 oCalendar.UnSelDate(2001-01-03) |
58 |
How do I get the list of selected dates
/*begin event SelectionChanged() - Fired when the selection is changed.*/ /* oCalendar = ole_1.Object MessageBox("Information",string( String(oCalendar.SelDate) )) */ /*end event SelectionChanged*/ OleObject oCalendar oCalendar = ole_1.Object |
57 |
How do I select multiple dates
OleObject oCalendar oCalendar = ole_1.Object oCalendar.SingleSel = false oCalendar.Date = 2001-01-01 oCalendar.SelDate = 2001-01-02 oCalendar.SelDate = 2001-01-03 oCalendar.SelDate = 2001-01-04 |
56 |
How do I get the selected date
|
55 |
How can I build a date expression
|
54 |
How can I select a new date
OleObject oCalendar oCalendar = ole_1.Object oCalendar.Date = oCalendar.DoDate(2001,1,1) oCalendar.SelDate = oCalendar.DoDate(2001,1,2) |
53 |
How can I select a new date
|
52 |
How can I change the browsed date
|
51 |
How can I show or hide the buttons that in the header
OleObject oCalendar oCalendar = ole_1.Object oCalendar.ShowYearSelector = false oCalendar.ShowMonthSelector = false |
50 |
How can I show or hide the buttons that scrolls the years
|
49 |
How can I disable changing the month in the months selector
|
48 |
How can I change the visual aspect of the selected date, using your EBN
OleObject oCalendar oCalendar = ole_1.Object oCalendar.BackColor = RGB(255,255,255) oCalendar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oCalendar.SelBackColor = 16777216 /*0x1000000*/ oCalendar.SelForeColor = oCalendar.BackColor |
47 |
How can I change the colors for selected dates
OleObject oCalendar oCalendar = ole_1.Object oCalendar.SelBackColor = RGB(0,0,0) oCalendar.SelForeColor = RGB(255,255,255) |
46 |
How can I change the color of the line arround a month
OleObject oCalendar oCalendar = ole_1.Object oCalendar.DrawBorderLine = 2 oCalendar.BorderLineColor = RGB(255,0,0) |
45 |
How can I change the style of the line arround a month
|
44 |
How can I specify the number of months being displayed
OleObject oCalendar oCalendar = ole_1.Object oCalendar.ShowTodayButton = false oCalendar.ShowYearScroll = false oCalendar.MinMonthX = 2 oCalendar.MaxMonthX = 2 oCalendar.MinMonthY = 2 oCalendar.MaxMonthY = 2 |
43 |
How can I lock the control, so user can't select a new date
|
42 |
How do I change the first day of the week
|
41 |
How do I change the name of the months
|
40 |
How do I change the name of the months
OleObject oCalendar oCalendar = ole_1.Object oCalendar.MonthName(1,"Jan") oCalendar.MonthName(2,"Feb") oCalendar.MonthName(3,"Mar") oCalendar.MonthName(4,"Apr") oCalendar.MonthName(5,"May") oCalendar.MonthName(6,"Jun") oCalendar.MonthName(7,"Jul") oCalendar.MonthName(8,"Aug") oCalendar.MonthName(9,"Sep") oCalendar.MonthName(10,"Oct") oCalendar.MonthName(11,"Nov") oCalendar.MonthName(12,"Dec") |
39 |
How do I change the name for each week day
OleObject oCalendar oCalendar = ole_1.Object oCalendar.AutoSize = false oCalendar.FixedCellWidth = 24 oCalendar.FixedCellHeight = 16 oCalendar.WeekDays = "Su Mo Tu We Th Fr Sa" oCalendar.HeaderForeColor = RGB(255,0,0) oCalendar.HeaderBackColor = RGB(255,255,255) |
38 |
How can I specify the width and height for dates being displayed in the calendar
OleObject oCalendar oCalendar = ole_1.Object oCalendar.AutoSize = false oCalendar.FixedCellWidth = 22 oCalendar.FixedCellHeight = 16 |
37 |
How can I specify the width and height for dates being displayed in the calendar
OleObject oCalendar oCalendar = ole_1.Object oCalendar.AutoSize = false oCalendar.FixedCellWidth = 32 oCalendar.FixedCellHeight = 24 |
36 |
How do I change the appearance for dates in the calendar
|
35 |
How do I specify the color for the grid lines
OleObject oCalendar oCalendar = ole_1.Object oCalendar.DrawGridLine = 1 oCalendar.GridLineColor = RGB(255,0,0) |
34 |
How do I draw the grid lines
|
33 |
How do I change the foreground color for the week days and week numbers header
OleObject oCalendar oCalendar = ole_1.Object oCalendar.HeaderForeColor = RGB(255,0,0) oCalendar.ShowWeeks = true |
32 |
How do I change the background color for the week days and week numbers header
OleObject oCalendar oCalendar = ole_1.Object oCalendar.HeaderBackColor = RGB(255,0,0) oCalendar.ShowWeeks = true |
31 |
How can I show or hide the 'Today' button
|
30 |
How can I show or hide the scroll bar that changes the year
|
29 |
How can I show or hide the header that displays the months
|
28 |
How can I show or hide the header that displays the week days
|
27 |
How do I show or hide the weeks
|
26 |
How can I change the visual appearance of Today date in the calendar
|
25 |
How do I mark the Today date
|
24 |
How can I show the control's selection even if the control loses the focus
|
23 |
How can I hide the control's selection when the control loses the focus
|
22 |
How do I enable single selection
|
21 |
How do I enable multiple selection
|
20 |
How do I disable or enable the control
|
19 |
Can I change the forecolor for the tooltip
OleObject oCalendar oCalendar = ole_1.Object oCalendar.ToolTipDelay = 1 oCalendar.ToolTipWidth = 364 oCalendar.Background(66,RGB(255,0,0)) oCalendar.Events.Add(oCalendar.Date).Comment = "This is a text that shows up when the cursor hovers the date" oCalendar.HideSelection = true |
18 |
Can I change the background color for the tooltip
OleObject oCalendar oCalendar = ole_1.Object oCalendar.ToolTipDelay = 1 oCalendar.ToolTipWidth = 364 oCalendar.Background(65,RGB(255,0,0)) oCalendar.Events.Add(oCalendar.Date).Comment = "This is a text that shows up when the cursor hovers the date" oCalendar.HideSelection = true |
17 |
Can I change the default border of the tooltip, using your EBN files
|
16 |
How can I change the visual appearance of the selected month, in the months selector, using EBN files
OleObject oCalendar oCalendar = ole_1.Object oCalendar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oCalendar.Background(15,16777216 /*0x1000000*/) oCalendar.Background(16,RGB(255,0,0)) |
15 |
How can I change the visual appearance of Today date in the calendar, using EBN files
OleObject oCalendar oCalendar = ole_1.Object oCalendar.VisualAppearance.Add(1,"c:\exontrol\images\pushed.ebn") oCalendar.Background(14,16777216 /*0x1000000*/) oCalendar.Background(20,RGB(1,0,0)) oCalendar.SelForeColor = RGB(0,0,0) oCalendar.MarkToday = true |
14 |
How can I change the visual appearance of separator between calendar and 'Today' button , using EBN files
OleObject oCalendar oCalendar = ole_1.Object oCalendar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oCalendar.Background(13,16777216 /*0x1000000*/) |
13 |
How can I change the visual appearance of the scrolling bar for years, using EBN files
OleObject oCalendar oCalendar = ole_1.Object oCalendar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oCalendar.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn") oCalendar.Background(12,16777216 /*0x1000000*/) oCalendar.Background(11,33554432 /*0x2000000*/) |
12 |
How can I change the visual appearance of 'Today' button, using EBN files
OleObject oCalendar oCalendar = ole_1.Object oCalendar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oCalendar.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn") oCalendar.Background(9,16777216 /*0x1000000*/) oCalendar.Background(10,33554432 /*0x2000000*/) |
11 |
How can I change the visual appearance of header , using EBN files
OleObject oCalendar oCalendar = ole_1.Object oCalendar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oCalendar.Background(8,16777216 /*0x1000000*/) oCalendar.HeaderForeColor = RGB(255,0,0) |
10 |
How can I change the visual appearance of header that week numbers, using EBN files
OleObject oCalendar oCalendar = ole_1.Object oCalendar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oCalendar.Background(7,16777216 /*0x1000000*/) oCalendar.HeaderForeColor = RGB(255,0,0) oCalendar.ShowWeeks = true |
9 |
How can I change the visual appearance of header that displays days, using EBN files
OleObject oCalendar oCalendar = ole_1.Object oCalendar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oCalendar.Background(6,16777216 /*0x1000000*/) |
8 |
How can I change the visual appearance of the drop down button, using EBN files
OleObject oCalendar oCalendar = ole_1.Object oCalendar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oCalendar.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn") oCalendar.Background(4,16777216 /*0x1000000*/) oCalendar.Background(5,33554432 /*0x2000000*/) |
7 |
How do I change the visual appearance of the left and right buttons in the calendar's header, using EBN files
OleObject oCalendar oCalendar = ole_1.Object oCalendar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oCalendar.Background(2,16777216 /*0x1000000*/) oCalendar.Background(3,16777216 /*0x1000000*/) |
6 |
How do I change the visual appearance of the up and down buttons in the calendar's header, using EBN files
OleObject oCalendar oCalendar = ole_1.Object oCalendar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oCalendar.Background(0,16777216 /*0x1000000*/) oCalendar.Background(1,16777216 /*0x1000000*/) |
5 |
How do I change the control's foreground color
OleObject oCalendar oCalendar = ole_1.Object oCalendar.ForeColor = RGB(255,0,0) |
4 |
How do I change the control's background color
OleObject oCalendar oCalendar = ole_1.Object oCalendar.BackColor = RGB(200,200,200) |
3 |
How can I change the control's font
|
2 |
How do I change the control's border, using your EBN files
OleObject oCalendar oCalendar = ole_1.Object oCalendar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oCalendar.Appearance = 16777216 /*0x1000000 | */ |
1 |
How do I remove the control's border
|